-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[OP][Host][OpUTPy] Add unfold operator and host implementation #8305
[OP][Host][OpUTPy] Add unfold operator and host implementation #8305
Conversation
Thanks for your contribution! |
…e/Paddle-Lite into add_host_unfold_op
627c42d
to
259fcb8
Compare
} | ||
} | ||
|
||
inline int CalcOutputSize(int input_size, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是否考虑后面去掉类似的重复实现的代码?下个 PR修改一下吧
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
关于代码风格和冗余的实现,后面再提个 PR 改下
CHECK_GT(output_width, 0); | ||
int output_col_length = output_height * output_width; | ||
output_shape.push_back(output_col_length); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
多余的空行后面记得删除掉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
好的
No description provided.